home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / mktime.c < prev    next >
C/C++ Source or Header  |  1990-05-03  |  3KB  |  116 lines

  1. /* 
  2.  * mktime.c --
  3.  *
  4.  *    Source code for the "mktime" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/time/RCS/mktime.c,v 1.1 90/05/03 16:45:54 rab Exp $";
  18. #endif
  19.  
  20. #include <time.h>
  21.  
  22. #ifdef __STDC__
  23. static int comparTime(struct tm *t1, struct tm *t2);
  24. #else
  25. static int comparTime();
  26. #endif
  27.  
  28. /*
  29.  *----------------------------------------------------------------------
  30.  *
  31.  * mktime --
  32.  *
  33.  *      Convert a local time, contained in a `struct *tp' into a
  34.  *      calander time in the same representation used by time(2).
  35.  *
  36.  * Results:
  37.  *      Returns the calander time, or -1 if it cannot be represented.
  38.  *
  39.  * Side effects:
  40.  *      Trashes localtime's internal buffer.
  41.  *
  42.  *----------------------------------------------------------------------
  43.  */
  44.  
  45. time_t
  46. mktime(tp)
  47.     struct tm *tp;
  48. {
  49.     register int i, r;
  50.     time_t t = 0;
  51.     struct tm temp;
  52.  
  53.     /* Make a local copy just in case tp points to localtime's buffer */
  54.     temp = *tp;
  55.     /* Check for zero */
  56.     if (comparTime(&temp, localtime(&t)) == 0) {
  57.     return 0;
  58.     }
  59.     /* Do a binary search, until the right time is found */
  60.     for (i = 31; --i >= 0;) {   /* start with high bit, work toward zero */
  61.     t |= 1L << i;           /* set bit, then compare times */
  62.     if ((r = comparTime(&temp, localtime(&t))) < 0) {
  63.         t &= ~(1L << i);    /* t is later, so clear the bit */
  64.     } else if (r == 0) {
  65.         return t;    /* times match, so return */
  66.     }
  67.     }
  68.     /* If we get here, then tp didn't point to valid data. */
  69.     return -1;
  70. }
  71.  
  72. /*
  73.  *------------------------------------------------------------------
  74.  * comparTime --
  75.  *
  76.  *      Compare two `struct tm's.
  77.  *
  78.  * Results:
  79.  *      0 if the times are the same.
  80.  *      Positive if t1 is later than t2.
  81.  *      Negative if t1 is earlier than t2.
  82.  *
  83.  * Side effects:
  84.  *      None.
  85.  *
  86.  *-----------------------------------------------------------------
  87.  */
  88.  
  89. static int
  90. comparTime(t1, t2)
  91.     struct tm *t1, *t2;
  92. {
  93.     int diff;
  94.  
  95.     if ((diff = t1->tm_year - t2->tm_year) != 0) {
  96.     return diff;
  97.     }
  98.     if ((diff = t1->tm_mon - t2->tm_mon) != 0) {
  99.     return diff;
  100.     }
  101.     if ((diff = t1->tm_mday - t2->tm_mday) != 0) {
  102.     return diff;
  103.     }
  104.     if ((diff = t1->tm_hour - t2->tm_hour) != 0) {
  105.     return diff;
  106.     }
  107.     if ((diff = t1->tm_min - t2->tm_min) != 0) {
  108.     return diff;
  109.     }
  110.     if ((diff = t1->tm_sec - t2->tm_sec) != 0) {
  111.     return diff;
  112.     }
  113.     return 0;
  114. }
  115.  
  116.